﻿.text_content{
    color: #707070;
    font-size: 1rem;
    line-height: 1.5;
    font-family: "Mohr-Medium";
    text-align: center;
    display: block;
}

.cardEmpresa{
    display: flex;
    flex-direction: column;
    min-width: 16rem;
    max-width: 304px;
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 270ms ease;
    position: relative;
}
.cardEmpresa::before {
    content: "";
    position: absolute;
    display: flex;
    inset: 0;
    isolation: isolate;
    mix-blend-mode: color;
    opacity: 0;
}

.cardEmpresa:hover::before {
    opacity: 1;
}
.cardEmpresa:hover {
    transform: scale(1.05);
}
.tiltle-card{
    font-size: 21px;
    line-height: 24px;
    letter-spacing: -0.42px;
    color: #021f59;
    font-family: 'Mohr-Bold';
    min-height:47px;
    margin-bottom:0px;
}

.imgContent{
    width: 100%;
    margin: 0 auto;
    height: 203px;
    display: block;
    margin-bottom: 0.5rem;
    
}
.flex {
    display: flex;
    gap: 2em;
    justify-content: center;
    flex-flow: row wrap;
  }
  
  .flex > * {
    flex-grow: 1;
    flex-basis: 0;
  }

.txtContentdiv{
    padding: 20px;
}
.txtContentdiv img{
    margin-bottom: 1rem;
    max-width: 50px;
    max-height: 45px;
    height: auto;
}

.text_content_card{
    color: #707070;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: "Mohr-Medium";
    text-align: left;
    display: block;
}

.cardsEmpresaCol .row{
    gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}


@media screen and (min-width:641px) and (max-width:1000px){
    .cardsEmpresaCol .row{
        gap: 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
 }

@media screen and (max-width:640px) {
    .cardsEmpresaCol .row{
        grid-template-columns: 1fr;
    }

    .cardEmpresa {
        min-width: 20rem;
    }
}

@media screen and (max-width:320px){
    .txt_op_am_subtitle{
        font-size: 2.5rem;
    }
    
    .txt_title_op{
        font-size: 50px;
    }
}